GET Hero Skill Combos
/web/mlbb/heroes/{hero_identifier}/skill-combos
Get the most effective skill combos for a specific hero by ID or name. Supports query parameters for pagination and localization.
Path parameters:
- hero_identifier: Hero identifier as numeric hero ID or hero name. Accepts values like
30,Yi Sun-shin, oryisunshin.
Query parameters:
- size: Number of items per page (minimum: 1).
- index: Page index (starting from 1).
- lang: Language code for localized content (default:
en).
The response includes hero skill combo details:
- records: Array of combo entries, each containing:
- _id: Unique record identifier.
- caption: Caption or localized label (e.g., laning, teamfight).
- configId: Configuration ID.
- createdAt: Creation timestamp.
- createdUser: Creator username.
- data:
- hero_id: Hero ID.
- title: Combo title (e.g., 'TEAMFIGHT COMBOS').
- desc: Descriptive instructions on how to execute the combo (e.g., laning phase or teamfight scenarios).
- skill_id: Array of skills in recommended sequence, each containing:
- skillid: Skill ID.
- skillicon: Skill icon URL.
- _id, _createdAt, _updatedAt: Metadata fields.
- updatedAt: Last update timestamp.
- updatedUser: Last updater username.
This endpoint is useful for:
- Guiding players on optimal skill usage patterns.
- Teaching effective combos for laning and teamfight scenarios.
- Helping maximize hero performance in different situations.
{
"code": 0,
"message": "OK",
"data": {
"records": [
{
"_id": "661fffbc17071f48448b1f76",
"caption": "\u5f25\u4e9a",
"configId": 144237,
"createdAt": 1713373116184,
"createdUser": "rubickguo",
"data": {
"_object": 2684183,
"desc": "In teamfights, use Miya's Ultimate first to conceal herself, then find an ideal position to attack the enemy and quickly stack her Passive. Utilize her 2nd Skill to immobilize the enemy and activate her 1st Skill to enhance her Basic Attacks to hit multiple targets at once.",
"hero_id": 1,
"skill_id": [
{
"_createdAt": 1730960697288,
"_id": "672c5d399d856a6db37d936a",
"_updatedAt": 1758787887535,
"data": {
"skillicon": "https://akmweb.youngjoygame.com/web/svnres/img/mlbb/homepage/100_361546d795e6df7029a1cf1252e57ac8.png",
"skillid": 130
},
"id": 109690,
"sourceId": 2674712
}
],
"title": "TEAMFIGHT COMBOS"
},
"id": 2694856,
"linkId": [
2684183
],
"sort": 0,
"updatedAt": 1713373219943,
"updatedUser": "rubickguo"
}
],
"total": 2
}
}